Skip to content

Commit 39b390b

Browse files
committed
remove dummy function calls
1 parent cd3522a commit 39b390b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ clean:
1818
rm -rf build/
1919

2020
release: export _VERSION=$(shell jq '.version' $(_UUID)/metadata.json)
21-
release: _version_bump _build
21+
release: eslint _version_bump _build
2222
gitg
2323
git commit -v
2424
git tag $(_VERSION)

PersianCalendar@oxygenws.com/Calendar.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export class Calendar {
126126
style_class: 'calendar-month-label pcalendar-month-label',
127127
x_expand: true,
128128
});
129-
this._setFont(this._monthLabel);
129+
// this._setFont(this._monthLabel);
130130

131131
icon = new St.Icon({ icon_name: this._locale.isRtl() ? 'go-next-symbolic' : 'go-previous-symbolic' });
132132
prevMonthButton = new St.Button({ style_class: style, child: icon });
@@ -158,7 +158,7 @@ export class Calendar {
158158
style_class: 'calendar-day calendar-day-heading pcalendar-weekday',
159159
text: this.phrases.weekdayOne[i],
160160
});
161-
this._setFont(label);
161+
// this._setFont(label);
162162
this.actor.layout_manager.attach(label, Math.abs(this._colPosition - i), 1, 1, 1);
163163
}
164164

@@ -289,7 +289,7 @@ export class Calendar {
289289
);
290290
const isSameMonth = pIter.month === this._selectedDate.month;
291291
const button = new St.Button({ label: this._str.transDigits(pIter.day) });
292-
this._modifyFont(button);
292+
// this._modifyFont(button);
293293

294294
button.connect('clicked', () => this.setDate(pIter));
295295

@@ -405,7 +405,7 @@ export class Calendar {
405405
x_align: Gtk.ActorAlign.FILL,
406406
x_expand: true,
407407
});
408-
this._setFont(bottomLabel);
408+
// this._setFont(bottomLabel);
409409

410410
_eventBox.add_child(bottomLabel);
411411
}

PersianCalendar@oxygenws.com/locale/persian-calendar.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: PACKAGE VERSION\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2025-09-30 12:12+0200\n"
11+
"POT-Creation-Date: 2025-09-30 15:16+0200\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"

PersianCalendar@oxygenws.com/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
"shell-version": ["48", "49"],
77
"url": "https://github.com/omid/Persian-Calendar-for-Gnome-Shell",
88
"uuid": "PersianCalendar@oxygenws.com",
9-
"version": 121
9+
"version": 122
1010
}

0 commit comments

Comments
 (0)