Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version: '22'
cache: 'npm'

- name: Get version from package.json
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version: '22'
cache: 'npm'

- name: Get version from package.json
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "yeetcode-app",
"productName": "YeetCode",
"version": "1.1.2",
"version": "1.1.3",
"description": "YeetCode - Competitive Programming Practice App",
"main": "src/index.js",
"config": {
Expand Down Expand Up @@ -82,7 +82,7 @@
"entitlements": "assets/entitlements.mac.plist",
"entitlementsInherit": "assets/entitlements.mac.plist",
"gatekeeperAssess": false,
"notarize": false
"notarize": true
},
"dmg": {
"contents": [
Expand Down
2 changes: 1 addition & 1 deletion src/components/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import OnboardingStep from './OnboardingStep';
import GroupStep from './GroupStep';
import LeaderboardStep from './LeaderboardStep';

const APP_VERSION = '1.1.2';
const APP_VERSION = '1.1.3';
function App() {
const [step, setStep] = useState('welcome');
const [userData, setUserData] = useState({
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const {

// More reliable isDev detection - packaged apps are always production
const isDev = app.isPackaged ? false : config.isDev || true;
const version = '1.1.2';
const version = '1.1.3';

// ========================================
// AUTO-UPDATER CONFIGURATION
Expand Down